Welcome![Sign In][Sign Up]
Location:
Search - xp driver

Search list

[Driver DevelopTUSB3410sscr

Description: TUSB3410 win9x和win xp 驱动源代码,包含开发测试工具-TUSB3410 win9x and win xp driver source code, includes the development and testing tools
Platform: | Size: 2058929 | Author: 赵仪峰 | Hits:

[SourceCode驱动开发

Description: 驱动开发环境搭建vs6.0+ddk 2600+windows xp+Driver Studio 3.2 2010-07-07 09:35 驱动开发环境之Windows XP DDK2600,VC++ 6.0, Driver Studio 3.2 神秘的驱动开发,神秘的WINDOWS内核,是什么把这些搞得这么神秘呢? 搭Windows驱动开发平台. 要安装的东西都有这些:在Windows XP的基础上,先装上VC++6.0,再装DDK2600(也就是DDK的XP版),最后装 Driver Studio 3.2。 1.首先装VC++ 6.0, 要装VC++6.0那是因为这个IDE式的环境你已经很熟悉,编译和连接的时候不要用各种命令行的命令,只要鼠标点点,就可以(当然啦,一些参数还是要填的)。具体怎么装我就不介绍了。 2.安装XP系统的DDK, DDK全称是叫Driver Development Kit,它提供4种驱动程序的编译环境,我们这种初学者一般是选Win XP Checked Build Enviorment。 ftp://202.113.29.4/ISO/M$/WinDDK/winxp_ddk.rar 这个是下载地址,我写这篇文章的时候这个链接还是通的,不知你看的时候通不通了,如果不通你可以联系我,我可以发给你。 安装的时候就没什么特别要注意的地方,唯一要记得的是记住要完整安装,把那些什么Samples全装上,对于我们这些初学者会很有用的。 3.安装Driver Studio, DriverStudio 是一套用来简化微软Windows 平台下设备驱动程序的开发,调试和测试的工具包。 对于学过Windows 编程的人我可以打个形象的比喻: DriverStudio中的DriverWorks,本质是“DDK类库”,使用C++类库封装的方法简化了NT Driver或者WDM驱动程序的开发,使用DriverWorks代替DDK开发,类似于使用MFC代替SDK开发Windows应用程序。 http://download2.77169.com/soft/Source/debug/200801/20071229SoftICExlDS3.2.1.zip 这个是下载地址。这个需要序列号和注册文件: http://www.4x4y.com/10257_CrackDown_Compuware.DriverStudio.v3.2.iNTERNAL.html 这个是序列号生成器和注册文件打包下载的地址。 2.安装和配置   软件的安装顺序:Windows XP --> VC6.0 --> WinXP_DDK -> DriverStudio3.2,如果顺序装错了,那么把DriverStudio3.2删除再重装就OK了。从网上找到库文件ntstrsafe.lib+csq.lib.rar,把解压出来的两个库文件拷贝到WinXP_DDK的安装目录下的库目录中(我的是C:WINDDK2600libwxpi386)。启动vc6,然后进行简单的配置:菜单DriverStudio菜单下的DDK Build Settings,在弹出的对话框中选择已经安装的DDK目录(比如我的是C:WINDDK2600),在Windows DDK compiler Options中选择"Enable only for Driver Studio"。 VC6.0-->Tools-->Options,点击"Directories"选项卡: 1)"“Show directories for:"下选择Include files,然后检查有没有包含ddk的头文件目录(我的是C:WINDDK2600incwxp),如果没有则加上; 2)"“Show directories for:"下选择Library files,然后检查有没有包含ddk的库文件目录(我的是C:WINDDK2600libwxpi386),如果没有则加上;    注意:安装DDK时一定要把例子安装(建议你安装全部的模块),否则编译vdwlibs.dsw时会报如下的错: vdw_wdm.lib - 1 error(s), 0 warning(s) 然后打开引起错误的文件,发现: #error The file is from the DDK at srcwdmhidinc. Install DDK HID samples to install hidport.h. Or update INCLUDE path for hidport.h in the DDK! 这表明安装WinXP_DDK的时候没有安装实例。 3.编译适合本机使用的库文件   (1).启动VC6.0。开始-->所有程序-->Compuware DriveStudio-->Develop-->DDK Building Settings,确保“DDK Root Directory”下方的内容是ddk的安装目录(比如我的是C:WINDDK2600),然后点击下方的"Luanch Program"正式启动vc6的开发环境。   (2).进入菜单File-->Open Workspace(打开位于DriverStudio3.2安装目录的DriverWorksSourcevdwlibs.dsw)-->进入菜单Build-->batch Build,点击“Select x86"按钮只选中全部的32位库(我的电脑是32位的。注意:对于32位的电脑一定不要选中64位的库,否则后面编译会出错)-->点击按钮"Rebuild AlL”开始编译。   注:如果出现无法打开文件这类的错误,一般都是DDK Build Settings指向不对,或安装顺序有误,或者你在32位机器上选中了64位库。 4.编译一个DriverStudio自带的实例   (1)"启动vc6,点击菜单File-->Open Workspace,打开项目文件C:Program FilesCompuwareDriverStudioDriverWorksExampleswdmhellowdmHelloWdm.dsw,然后编译,如果没有报错,那说明安装和配置成功。但请你别高兴的太早,开发环境安装配置成功只是万里长城的第一步,剩下的你就是要理解驱动模块的架构和具体的代码编写了。 5.使用Driver wizard生成驱动程序框架   (1).在VC6.0的界面下,点击菜单DriverStudio-->Driver wizard,此后系统会一步一步引导你完成设置,最后自动生产的驱动程序框架。   (2).设置好后将生成驱动文件,然后用VC6.0进行编译:进行Build菜单,Rebuild AlL将生成.sys文件,说明驱动模块编译成功!   注:如果出现无法打开ntstrsafe.lib的错误,说明系统缺少这个库文件,参照上面的方法补上这个库文件,或者进入菜单Project-->Settings,鼠标点击左边方框里的最上面一行,然后右边"Project Option"下的ntstrsafe.lib并删除它。 本文是转来的,经过我的验证可以搭建成功。有些软件下载可能需要到其他地方下载。希望各位开发的兄弟姐妹Enjoy yourself.
Platform: | Size: 64512 | Author: cdliqu@163.com | Hits:

[USB developcy7c68013

Description: usb 2.0 cy7c68013 pdf file
Platform: | Size: 516096 | Author: flight_bai | Hits:

[OS programbluescreen

Description: 含有经过我修改的键盘过滤驱动,在w2k,wxp下运行,按左右shift,左alt便蓝屏,卸载需使用虚键盘(切记)以及最初源码,编译环境为w2kddk或wxpddk剩余的参看其中的README-containing modified keyboard filter driver in w2k, wxp running, according to shift around, then left alt blue screens, unloading need to use virtual keyboard (remember) and the initial source code, compile the environment or wxpddk w2kddk remaining See the README
Platform: | Size: 350208 | Author: 于东 | Hits:

[Sniffer Package captureMiniNetMonitor

Description: 一个非常简单的基于MFC单文档结构的LAN包信息监视器,仅仅 实现了非常简单的功能,留待大家进一步扩展。该应用基于NT/2000/xp下的NDIS Packet Driver,所以你在运行它之前必须添加该包驱动程序-a very simple MFC single document based on the structure of the LAN packet information monitors, only achieved a very simple function, we leave it to further expand. The application based on the NDIS NT/2000/xp Packet Driver, so you run it must be added before the packet drivers
Platform: | Size: 117760 | Author: 乐浩军 | Hits:

[Firewall-Security开发Windows 2000 XP下的防火墙

Description: NDIS的PASSTHRU层的驱动程序,MySource应用层的程序,负责向驱动程序发指令,本来是想做防火墙的,可后来做到可过滤IP地址后没有再做了
Platform: | Size: 80896 | Author: YJ | Hits:

[Driver Developd12smart_usb

Description: 使用PDIUSBD12做usb接口时用philip 提供的驱动编写的程序在xp下会出错,可用该补丁修补D12_USB驱动安装补丁-use PDIUSBD12 do usb interface philip used for the preparation of the driver in the procedures under xp to be wrong, available patches to fix the drive and install a patch D12_USB
Platform: | Size: 33792 | Author: 蓝天 | Hits:

[USB developUSBDriver

Description: usb。rar 驱动 windowsxp下的 还不错 源码 快下吧-usb driver for windows xp, good source code.download it.
Platform: | Size: 18432 | Author: jingdian | Hits:

[Driver DevelopWMISample

Description: WMI驱动实例,可参看windows2000/xp WDM设备驱动程序开发-WMI driver sample,referring windows2000/xp WDM dirver program development.
Platform: | Size: 7098368 | Author: 尚一 | Hits:

[Driver DevelopXunic

Description: WDM驱动程序实例,用DriverStudio加Windows Xp DDK写的。-WDM example, use Windows Xp DriverStudio increase DDK wrote.
Platform: | Size: 401408 | Author: 孙俊 | Hits:

[Com Portvcom

Description: 一个2000系统上的虚拟串口驱动程序,目的是解决已有只能从串口接收数据的程序能够接收来自其他端口的数据。-a system of virtual serial port driver, has been designed to address only receive data from the serial port procedures to receive from other ports of data.
Platform: | Size: 208896 | Author: syc | Hits:

[Windows DevelopFastinst

Description: The FASTINST Sample accompanies Chapter 15 and illustrates how to write a simple setup program for Windows XP or Windows 98/Me. The real purpose of FASTINST is to allow you (and me!) to quickly install a sample driver.-The FASTINST Sample accompanies Chapter 1 5 and illustrates how to write a simple setup pro gram for Windows XP or Windows 98/Me. The real pu rpose of FASTINST is to allow you (and me!) to which ckly install a sample driver.
Platform: | Size: 60416 | Author: zhongl | Hits:

[ARM-PowerPC-ColdFire-MIPSusb_device_driver_2410

Description: usb device driver for samsung2410-USB device driver for samsung2410
Platform: | Size: 31744 | Author: 朱文浩 | Hits:

[VxWorks3c509

Description: Vxworks 5.5.1的3C509网卡驱动程序-Vxworks 5.5.1 of the 3C509 NIC driver
Platform: | Size: 6144 | Author: 大令 | Hits:

[Driver DevelopIrCOMM2kQuellen

Description: IrCOMM2k - Virtual Infrared COM Port for Windows 2000/XP。 2. FILES IN THIS ARCHIVE: - Setup.exe (setup and uninstall program) - ircomm2k.exe (service program) - ircomm2k.sys (device driver) - ircomm2k.dll (device property page) - ircomm2k.hlp (property page context help) - ircomm2k.inf (setup script for windows) - Readme.txt (this file) - License.txt (terms of license) 3. INSTALLATION 1. unzip IrCOMM2k-1.2.0.zip in a new folder 2. run the setup program 3. disable the image transfer under wireless link-IrCOMM2k- Infrared Virtual COM Port for Wi Windows 2000/XP. 2. FILES IN THIS ARCHIVE :- Setup.exe (setup and uninstall program)- irc omm2k.exe (service program)- ircomm2k.sys (d evice driver)- ircomm2k.dll (device property page)- ircomm2k.hlp (property page context he lp)- ircomm2k.inf (setup script for windows)- Readme.txt (this file)- License.txt (terms of license) 3. INSTALLATION 1. unzip IrCOMM2k-1. 2.0.zip in a new folder 2. run the setup program 3 . disable the wireless image transfer under lin k
Platform: | Size: 171008 | Author: mesu | Hits:

[Firewall-SecurityTGuard

Description: 这是青少年卫士网络版的Rip版,版本号为2.1,基于费尔的Ndis Hook技术.相比正式版,除了去掉了无关紧要的注册和升级,其余一字未改. 目录列表: TGuard 应用程序目录 TGuard_sys For 2k的驱动程序 Release 存放应用程序 Def 应用程序和驱动共用的一个定义文件 Tools 工具 安装: 将.sys文件放到\windows\system32\driver目录下,导入Tools目录中installHook.reg,重启. 注意点: 支持winRoute,Winxp带的ics共享,isa Server, 不支持sygate. 对网卡无限制. V2.1 => V2.2的改动: 从Ndis Hook技术改为基于DDK带的passthru. (*) 懂Ndis的话,只需5分钟,直接复制几个文件,加10行以内代码就可从V2.1改为V2.2。-This is the youth version of the network guards Rip version, version 2.1, Based on the Ndis Fernando Hook technology. Compared to the official version, in addition to eliminating the irrelevant to the registration and upgrading, The remaining unchanged word. directory listing : TGuard application directory TGuard_sys For 2k Driver Release deposit Def up application procedures and application-driven definition of a common document Tools tool installation : will. sys files on \ windows \ system32 \ directory driver, Introduction Tools directory installHook.reg restart. attention : winRoute support, Winxp belt ics sharing, isa Server, not to support sygate. unrestricted right card. V2.1 =
Platform: | Size: 913408 | Author: cnbeta1985 | Hits:

[Driver Developporttalk+io

Description: 驱动源码,windows2k/xp能够读写端口-driver source code, can read and write ports windows2k/xp
Platform: | Size: 8192 | Author: 李宾 | Hits:

[Driver DevelopOV511_CE

Description: Windows CE.net USB 摄像头驱动开发驱动程序形式为流接口驱动,基本框架是一个dll动态连接库。 -Windows CE.net USB Camera Driver Development Driver Interface form of a flow-driven, basic framework is a dynamic link library dll.
Platform: | Size: 142336 | Author: free | Hits:

[Driver DevelopUSB_Driver_Dev.Frame

Description: Visual C++ 6.0、Windows98/2000/XP DDK 下面的USB设备驱动程序开发框架-Visual C 6.0, Windows98/2000/XP DDK below the USB Device Driver Development Framework
Platform: | Size: 4096 | Author: 王磊 | Hits:

[Driver Developrtl8029_driverstudio_ddkxp

Description: 自编的RTL8029驱动程序,用DS3.1开发-staged by the RTL8029 driver, with the development of DS3.1
Platform: | Size: 51200 | Author: 马顺利 | Hits:
« 1 2 34 5 6 7 8 9 10 ... 20 »

CodeBus www.codebus.net